home comics writing pictures archive about

Line.h

Language: C++
Last Modified: 2022-08-18 12:03:01 AM UTC
File Size: 303 bytes
http://www.penguinstew.ca/example/CodeFormater/Line.h
#pragma once
#include <string>
class Line
{
int number;
std::string content;
public:
Line(int number, std::string content);
int GetNumber();
std::string GetContent();
std::string ToString();
std::string FormatNumber(bool first);
std::string FormatContent(bool first);
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18